#classesHolder {
    display: flex;
    flex-direction: column;
}

div.group{
    width: inherit;
}

ul.simulationList {
    margin: 0px;
    list-style-type: none;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}

li.simulationListItem {
    background-color: rgb(15, 16, 17);
    border: solid 1px rgb(35, 36, 37);
    border-radius: 10px;
    margin: 7px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0px 0px 5px black;
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 350px;
}

li.simulationListItem:hover {
    box-shadow: 2px 2px 10px black;
    background-color: rgb(25, 26, 27);
    ;
}

img {
    float: right;
}

.demoImage {
    overflow: hidden;
    float: right;
}
.demoImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}